home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1996 / MacHack 1996.toast / Hacks / Hacks ’95 / NetFractal™ / Fractal 8 source / DemoDoc.h < prev    next >
Encoding:
Text File  |  1995-06-24  |  245 b   |  18 lines  |  [TEXT/MPCC]

  1. // DemoDoc.h
  2.  
  3. #include <LSingleDoc.h>
  4.  
  5. class NetPoint;
  6.  
  7. class DemoDoc :
  8.     public LSingleDoc
  9. {
  10. protected:
  11.     NetPoint            *fNetPoint;
  12. public:
  13.                         DemoDoc(LCommander *inSuper);
  14.     virtual                ~DemoDoc();
  15.     
  16.     void                SetNetPoint(NetPoint* inNewPoint);
  17.  
  18. };